/* ===============================
   LEADERSHIP SECTION STYLES
   =============================== */
.leadership-section {
  background-color: #ffffff;
  padding: 30px 0;
  font-family: 'Arial', sans-serif;
}

.leadership-main-title {
  text-align: left;
  padding-left: 80px;
  font-size: 2.2rem;
  font-weight: 800;
  color: #111827;
  margin-bottom:25px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards per row for Desktop */
  gap: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Base State for Staggered Animation */
.leader-card {
  text-align:center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

/* Image on Top */
.leader-image-wrapper {
  width: 150px; 
  height: 150px;
  margin: 0 auto 25px; /* Centers image and adds space below */
  border-radius: 50%;
  overflow: hidden;
  background-color: #f1f5f9;
}

.leader-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Name directly below image */
.leader-name {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #1e293b;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

/* Role/Description below Name */
.role {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 15px;
}

/* Social icons at the bottom */
.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-links a {
  color: #93c5fd; /* Soft blue icons as seen in your image */
  font-size: 0.9rem;
  transition: color 0.3s;
  text-decoration: none;
}

.social-links a:hover {
  color: #3b82f6;
}

/* ===============================
   RESPONSIVENESS
   =============================== */
@media (max-width: 992px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .leadership-grid {
    grid-template-columns: 1fr; /* Full width single column for mobile */
    gap: 50px;
  }
  .leader-image-wrapper {
    width: 220px;
    height: 220px;
  }
}